home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / dejagnu.lha / dejagnu-1.0.1 / tcl / tests / lrange.test < prev    next >
Text File  |  1992-11-06  |  3KB  |  69 lines

  1. # Commands covered:  lrange
  2. #
  3. # This file contains a collection of tests for one or more of the Tcl
  4. # built-in commands.  Sourcing this file into Tcl runs the tests and
  5. # generates output for errors.  No output means no errors were found.
  6. #
  7. # Copyright 1991 Regents of the University of California
  8. # Permission to use, copy, modify, and distribute this
  9. # software and its documentation for any purpose and without
  10. # fee is hereby granted, provided that this copyright notice
  11. # appears in all copies.  The University of California makes no
  12. # representations about the suitability of this software for any
  13. # purpose.  It is provided "as is" without express or implied
  14. # warranty.
  15. #
  16. # $Header: /sprite/src/lib/tcl/tests/RCS/lrange.test,v 1.1 91/09/06 14:47:58 ouster Exp $ (Berkeley)
  17.  
  18. if {[string compare test [info procs test]] == 1} then {source defs}
  19.  
  20. test lrange-1.1 {range of list elements} {
  21.     lrange {a b c d} 1 2
  22. } {b c}
  23. test lrange-1.2 {range of list elements} {
  24.     lrange {a {bcd e {f g {}}} l14 l15 d} 1 1
  25. } {{bcd e {f g {}}}}
  26. test lrange-1.3 {range of list elements} {
  27.     lrange {a {bcd e {f g {}}} l14 l15 d} 3 end
  28. } {l15 d}
  29. test lrange-1.4 {range of list elements} {
  30.     lrange {a {bcd e {f g {}}} l14 l15 d} 4 10000
  31. } {d}
  32. test lrange-1.5 {range of list elements} {
  33.     lrange {a {bcd e {f g {}}} l14 l15 d} 4 3
  34. } {}
  35. test lrange-1.6 {range of list elements} {
  36.     lrange {a {bcd e {f g {}}} l14 l15 d} 10 11
  37. } {}
  38. test lrange-1.7 {range of list elements} {
  39.     lrange {a b c d e} -1 2
  40. } {a b c}
  41. test lrange-1.8 {range of list elements} {
  42.     lrange {a b c d e} -2 -1
  43. } {}
  44. test lrange-1.9 {range of list elements} {
  45.     lrange {a b c d e} -2 e
  46. } {a b c d e}
  47. test lrange-1.10 {range of list elements} {
  48.     lrange "a b\{c d" 1 2
  49. } "b\{c d"
  50.  
  51. test lrange-2.1 {error conditions} {
  52.     list [catch {lrange a b} msg] $msg
  53. } {1 {wrong # args: should be "lrange list first last"}}
  54. test lrange-2.2 {error conditions} {
  55.     list [catch {lrange a b 6 7} msg] $msg
  56. } {1 {wrong # args: should be "lrange list first last"}}
  57. test lrange-2.3 {error conditions} {
  58.     list [catch {lrange a b 6} msg] $msg
  59. } {1 {expected integer but got "b"}}
  60. test lrange-2.4 {error conditions} {
  61.     list [catch {lrange a 0 enigma} msg] $msg
  62. } {1 {expected integer or "end" but got "enigma"}}
  63. test lrange-2.5 {error conditions} {
  64.     list [catch {lrange "a \{b c" 3 4} msg] $msg
  65. } {1 {unmatched open brace in list}}
  66. test lrange-2.6 {error conditions} {
  67.     list [catch {lrange "a b c \{ d e" 1 4} msg] $msg
  68. } {1 {unmatched open brace in list}}
  69.